home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / wftp.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  78 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10305);
  10.  script_version ("$Revision: 1.13 $");
  11.  script_cve_id("CAN-1999-0200");
  12.  
  13.  name["english"] = "WFTP login check";
  14.  name["francais"] = "VΘrification de login de WFTP";
  15.  
  16.  script_name(english:name["english"], francais:name["francais"]);
  17.  
  18.  desc["english"] = "This FTP server accepts
  19. any login/password combination. This is a real
  20. threat, since anyone can browse the FTP section
  21. of your disk without your consent.
  22.  
  23. Solution : upgrade WFTP.
  24.  
  25. Risk factor : High";
  26.  
  27.  
  28.  
  29.  desc["francais"] = "Ce serveur FTP accepte
  30. n'importe quelle paire login/password. 
  31. C'est un vrai problΦme puisque n'importe
  32. qui peut fouiner la section FTP de votre
  33. disque dur, sans votre accord.
  34.  
  35. Solution : mettez α jour WFTP.
  36.  
  37. Facteur de risque : ElevΘ";
  38.  
  39.  
  40.  script_description(english:desc["english"], francais:desc["francais"]);
  41.  
  42.  summary["english"] = "Checks for any account";
  43.  summary["francais"] = "VΘrifie n'importe quel accompte";
  44.  script_summary(english:summary["english"], francais:summary["francais"]);
  45.  
  46.  script_category(ACT_GATHER_INFO);
  47.  
  48.  
  49.  script_copyright(english:"This script is Copyright (C) 1999 Renaud Deraison",
  50.         francais:"Ce script est Copyright (C) 1999 Renaud Deraison");
  51.  family["english"] = "FTP";
  52.  family["francais"] = "FTP";
  53.  script_family(english:family["english"], francais:family["francais"]);
  54.  script_dependencie("find_service.nes", "DDI_FTP_Any_User_Login.nasl");
  55.  script_require_ports("Services/ftp", 21);
  56.  exit(0);
  57. }
  58.  
  59. #
  60. # The script code starts here
  61. #
  62.  
  63. port = get_kb_item("Services/ftp");
  64. if(!port)port = 21;
  65. if(get_port_state(port))
  66. {
  67.   if(get_kb_item("ftp/" + port + "/AnyUser"))exit(0);
  68.  soc = open_sock_tcp(port);
  69.  if(soc)
  70.  {
  71.   if(ftp_log_in(socket:soc, user:"bogusbogus", pass:"soogjksjka"))
  72.   {
  73.    security_hole(port);
  74.   }
  75.   close(soc);
  76.  }
  77. }
  78.